home *** CD-ROM | disk | FTP | other *** search
/ MacWorld 1998 March / Macworld (1998-03) (Disk 1).dmg / Shareware World / Info / For Developers / GhostScript 5.10 / MacGS-510 / files / gs_epsf.ps < prev    next >
Text File  |  1997-08-26  |  2KB  |  61 lines

  1. %    Copyright (C) 1989, 1996 Aladdin Enterprises.  All rights reserved.
  2. % This file is part of Aladdin Ghostscript.
  3. % Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  4. % or distributor accepts any responsibility for the consequences of using it,
  5. % or for whether it serves any particular purpose or works at all, unless he
  6. % or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  7. % License (the "License") for full details.
  8. % Every copy of Aladdin Ghostscript must include a copy of the License,
  9. % normally in a plain ASCII text file named PUBLIC.  The License grants you
  10. % the right to copy, modify and redistribute Aladdin Ghostscript, but only
  11. % under certain conditions described in the License.  Among other things, the
  12. % License requires that the copyright notice and this notice be preserved on
  13. % all copies.
  14.  
  15. % Allow the interpreter to recognize MS-DOS EPSF file headers, and skip to
  16. % the PostScript section of the file.
  17.  
  18. /.runnoepsf /run load def
  19. /.epsfheader <C5D0D3C6> def
  20. /run
  21.  { dup type /filetype ne { (r) file } if
  22.         % Check for MS-DOS EPSF file (see Red Book p. 729).
  23.    true exch 0 1 3
  24.     {        % Stack: true file index
  25.       1 index read dup { pop dup .epsfheader 3 index get eq } if
  26.        { pop pop }    % if matched, don't need the character
  27.        {    % unread characters (wasn't EPSF)
  28.      2 index exch unread     % unread mismatch character
  29.      dup {   % loop unreading backwards in .epsfheader
  30.        1 sub dup .epsfheader exch get 2 index exch unread
  31.      } repeat pop
  32.      exch not exch exit    % change true to false
  33.        }
  34.       ifelse
  35.     }
  36.    for exch    % Stack: file true/false
  37.     {        % This block is executed if the file is MS-DOS EPSF.
  38.         % Build up the little-endian byte offset and length.
  39.       2
  40.     { 1 0 4
  41.        { 2 index read not { pop exit } if % if EOF, let error happen
  42.          2 index mul add exch 256 mul exch
  43.        }
  44.       repeat exch pop exch
  45.     }
  46.       repeat
  47.         % Stack: offset length file
  48.         % Use flushfile to skip quickly to the start of the
  49.         % PostScript section.
  50.       dup 4 -1 roll 12 sub () /SubFileDecode filter flushfile
  51.         % Now interpret the PostScript.
  52.       exch () /SubFileDecode filter cvx .runexec
  53.     }
  54.     { .runnoepsf
  55.     }
  56.    ifelse
  57.  } odef
  58.